HTMLify
index.html
Views: 465 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>DragonUncaged_Stack_Game</title> <link rel="stylesheet" href="./style.css"> </head> <body> <meta name="viewport" content="width=device-width,user-scalable=no"> <div id="container"> <div id="game"></div> <div id="score">0</div> <div id="instructions">Click (or press the spacebar) to place the block</div> <div class="game-over"> <h2>Game Over</h2> <p>You did great, you're the best.</p> <p>Click or spacebar to start again</p> </div> <div class="game-ready"> <div id="start-button">Start</div> <div></div> </div> </div> <!-- partial --> <script src='https://cdnjs.cloudflare.com/ajax/libs/three.js/r83/three.min.js'></script> <script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js'></script><script src="./script.js"></script> </body> </html> |